home *** CD-ROM | disk | FTP | other *** search
/ Corbis Images Sampler - Red / RED.iso / pc / Interface / inter.dxr / 00187_gall behavior.ls < prev    next >
Encoding:
Text File  |  1999-12-21  |  500 b   |  21 lines

  1. global oldText
  2.  
  3. on mouseUp
  4.   puppetSound(2, "click")
  5.   member("blurb").text = "Click on the colored circles above to view a selection of our unique collections."
  6.   oldText = member("blurb").text
  7.   sprite(9).visible = 1
  8.   sprite(71).visible = 0
  9.   set the foreColor of member "categories tab text" to 215
  10.   go("gallery")
  11. end
  12.  
  13. on mouseEnter
  14.   puppetSound(3, "over")
  15.   set the foreColor of member "galleries tab text" to 1
  16. end
  17.  
  18. on mouseLeave
  19.   set the foreColor of member "galleries tab text" to 215
  20. end
  21.